home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / src / mpeg / mlib.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  555b  |  28 lines

  1. /*************************************************************
  2.  * prototypes for mpeglib functions
  3.  *  T.C. Zhao (zhao@monte.svec.uh.edu)
  4.  *************************************************************/
  5.  
  6. #ifndef MLIB_H_
  7. #define MLIB_H_
  8.  
  9. /* hacks */
  10. #ifndef P
  11. #ifndef NO_PROTO
  12. #define P(s)   s
  13. #else
  14. #define P(s) ()
  15. #endif
  16. #endif
  17.  
  18. #include "video.h"
  19.  
  20. void frame_re_init P((void));
  21. void mpeg_system_init P((void));
  22. void set_video_stream P((FILE *));
  23. VidStream *mpeg_next_frame P((int));
  24. void reset_mpeg_stream P((void));
  25. void set_mpeg_seek P((int));
  26.  
  27. #endif
  28.